From 2fc0a1b2595ce0da934401c210c0822331b6e126 Mon Sep 17 00:00:00 2001 From: "djm@kirby.fc.hp.com" Date: Fri, 16 Sep 2005 16:50:09 -0600 Subject: [PATCH] Return rid mangling to previous method (to match hyperprivop.S) --- xen/include/asm-ia64/regionreg.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/include/asm-ia64/regionreg.h b/xen/include/asm-ia64/regionreg.h index c8915c164c..ed35dcff35 100644 --- a/xen/include/asm-ia64/regionreg.h +++ b/xen/include/asm-ia64/regionreg.h @@ -55,8 +55,8 @@ vmMangleRID(unsigned long RIDVal) t.uint = RIDVal; tmp = t.bytes[1]; - t.bytes[1] = t.bytes[2]; - t.bytes[2] = tmp; + t.bytes[1] = t.bytes[3]; + t.bytes[3] = tmp; return t.uint; } -- 2.30.2